type runtime.userArena
12 uses
runtime (current package)
arena.go#L116: x := ((*userArena)(arena)).new(te)
arena.go#L128: ((*userArena)(arena)).slice(slice, cap)
arena.go#L135: ((*userArena)(arena)).free()
arena.go#L222: type userArena struct {
arena.go#L250: func newUserArena() *userArena {
arena.go#L251: a := new(userArena)
arena.go#L252: SetFinalizer(a, func(a *userArena) {
arena.go#L267: func (a *userArena) new(typ *_type) unsafe.Pointer {
arena.go#L278: func (a *userArena) slice(sl any, cap int) {
arena.go#L303: func (a *userArena) free() {
arena.go#L355: func (a *userArena) alloc(typ *_type, cap int) unsafe.Pointer {
arena.go#L370: func (a *userArena) refill() *mspan {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |